home *** CD-ROM | disk | FTP | other *** search
/ An Introduction to Progr…l Basic 6.0 (4th Edition) / An Introduction to Programming using Visual Basic 6.0.iso / COMMON / TOOLS / VB / CABINETS / MSVCRT40.CAB / icontrols / marquee / MarqueeElementEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-01-08  |  500 b   |  12 lines

  1. package icontrols.marquee;
  2.  
  3. import com.ms.wd.core.Event;
  4.  
  5. public class MarqueeElementEvent extends Event {
  6.    public Object tag;
  7.  
  8.    public MarqueeElementEvent(Object tag) {
  9.       this.tag = tag;
  10.    }
  11. }
  12.